home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / GETSCR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-31  |  261 b   |  11 lines

  1. #include <mem.h>
  2. #include <dos.h>
  3.  
  4. #define VIDMODE   *(unsigned char far *) 0x00449lu
  5. #define VIDSEGREG (unsigned)((7 == VIDMODE) ? 0xb000 : 0xb800 )
  6.  
  7. void GetScreen( char *buffer )
  8. {
  9.     movedata( VIDSEGREG, 0, FP_SEG(buffer), FP_OFF(buffer), 4000 );
  10. }
  11.